
/* WRAPPER */
.contact-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch; /* 🔥 SAME HEIGHT */
  padding: 40px;
  background: #f9f9f9;
  flex-wrap: wrap;
}

/* SAME SIZE */
.equal-card {
  width: 470px;
}

/* CONTACT CARD */
.contact-container {
  background: #fff;
  padding: 30px 35px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-container h2 {
  font-size: 28px;
  font-weight: 700;
}

.blue-text {
  color: #007bff;
}

.subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* FORM */
.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.contact-container textarea {
  height: 90px;
  resize: none;
}

.contact-container button {
  width: 100%;
  background: #007bff;
  color: #fff;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.contact-container button:hover {
  background: #0056cc;
}

/* CONTACT INFO */
.contact-info {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-item {
  display: flex;
  gap: 10px;
}

.icon {
  font-size: 22px;
  color: #007bff;
}

.info-label {
  font-size: 12px;
  font-weight: bold;
  color: #666;
}

.info-text {
  font-size: 14px;
  color: #111;
}

/* MAP CARD */
.map-container {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

/* MAP */
#mapFrame {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}

/* MAP TABS */
.map-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.map-tabs button {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #ddd;
}

.map-tabs button.active {
  background: #007bff;
  color: white;
}

/* DESKTOP SAME HEIGHT */
@media (min-width: 1001px) {
  .equal-card {
    height: 580px;
  }
}
.icon {
  color: #000;
  font-size: 20px;
}


/* MOBILE */
@media (max-width: 1000px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .equal-card {
    width: 90%;
    height: auto;
  }

  .map-container {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .contact-info {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 350px;
  }
}
/* ===============================
   RESPONSIVE POLISH
   =============================== */

/* Tablets & small laptops */
@media (max-width: 1000px) {
  .contact-wrapper {
    padding: 30px 20px;
    gap: 30px;
  }

  .equal-card {
    width: 100%;
    max-width: 500px;
  }

  .contact-container h2 {
    font-size: 24px;
  }
}

/* Mobile phones */
@media (max-width: 600px) {

  .contact-wrapper {
    padding: 20px 15px;
    gap: 25px;
  }

  /* Cards */
  .equal-card {
    width: 100%;
    border-radius: 12px;
  }

  .contact-container {
    padding: 22px 20px;
  }

  /* Headings */
  .contact-container h2 {
    font-size: 22px;
  }

  .subtitle {
    font-size: 13px;
  }

  /* Inputs – thumb friendly */
  .contact-container input,
  .contact-container textarea {
    padding: 14px;
    font-size: 14px;
  }

  .contact-container button {
    padding: 14px;
    font-size: 15px;
  }

  /* Contact info stack */
  .contact-info {
    gap: 14px;
  }

  .info-text {
    font-size: 13px;
  }

  /* Map tabs */
  .map-tabs {
    gap: 8px;
  }

  .map-tabs button {
    padding: 10px;
    font-size: 13px;
  }

  /* Map */
  .map-container {
    height: 320px;
    padding: 12px;
  }
}
.info-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%); /* makes PNG pure black */
}
